VirtualBoxのShared folderの設定をする
ググると色んな情報が出てきてどのコマンドなのかわからない。公式Docが網羅的でよい
AutoとManualがある
Oracle VM VirtualBox provides the option to mount shared folders automatically. When automatic mounting is enabled for a shared folder, the Guest Additions service will mount it for you automatically.
Linux and Oracle Solaris guests. Folders are mounted under the /media directory. The folder name is normalized (no spaces, slashes or colons) and is prefixed with sf_.
For Linux and Oracle Solaris guests, access is restricted to members of the group vboxsf and the root user.
Autoは面倒なのでManualで設定する
Auto mountのチェックはしないこと
https://gyazo.com/ea2cb3bdd2f3199c8989a2d54c1f3b5d
設定方法
上のマニュアルの通り。有志のマニュアルもある
sharedを設定する
https://gyazo.com/4aa666a2deaa1b92fbcce79cf2ec2cf7
guest addition入れる
https://gyazo.com/b4711d3c1338a46ff3c9ad22e2f1874b
sudo mount -t vboxsf [shared foldersで指定したPC上のフォルダの名前] ~/shared
今回だと
sudo mount -t vboxsf reading-os-full-scratch-in-30-days ~/shared
これだと、再起動するごとに消ええるのでこの手順までやっておく fstabは今回の場合だと
code:/etc/fstab
reading-os-full-scratch-in-30-days /home/kadoyau/shared vboxsf defaults 0 0